Micron Document
`:top
The `!`F33f`_`[syntax`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Syntax_(programming_languages)]`_`f of the `F33f`_`[SQL`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=SQL]`_`f programming language`! is defined and maintained by `F33f`_`[ISO/IEC SC 32`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISO/IEC_JTC_1/SC_32]`_`f as part of `*ISO/IEC 9075`*. This standard is not freely available. Despite the existence of the standard, SQL code is not completely portable among different `F33f`_`[database systems`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Database]`_`f without adjustments.

>>Contents

• `F0af`_`[Language elements`#language-elements]`_`f
• `F0af`_`[Operators`#operators]`_`f
• `F0af`_`[Comments`#comments]`_`f
• `F0af`_`[Queries`#queries]`_`f
• `F0af`_`[Subqueries`#subqueries]`_`f
• `F0af`_`[Derived table`#derived-table]`_`f
• `F0af`_`[Null or three-valued logic (3VL)`#null-or-three-valued-logic-3vl]`_`f
• `F0af`_`[Data manipulation`#data-manipulation]`_`f
• `F0af`_`[Transaction controls`#transaction-controls]`_`f
• `F0af`_`[Data definition`#data-definition]`_`f
• `F0af`_`[Data types`#data-types]`_`f
• `F0af`_`[Data control`#data-control]`_`f
• `F0af`_`[References`#references]`_`f
• `F0af`_`[External links`#external-links]`_`f

-─

>>Language elements

The SQL language is subdivided into several language elements, including:

• `*Keywords`* are words that are defined in the SQL language. They are either reserved (e.g. `B100`F9d9SELECT`f`b, `B100`F9d9COUNT`f`b and `B100`F9d9YEAR`f`b), or non-reserved (e.g. `B100`F9d9ASC`f`b, `B100`F9d9DOMAIN`f`b and `B100`F9d9KEY`f`b). List of `F33f`_`[SQL reserved words`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=SQL_reserved_words]`_`f.
• `*Identifiers`* are names on database objects, like `F33f`_`[tables`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Table_(database)]`_`f, columns and schemas. An identifier may not be equal to a reserved keyword, unless it is a delimited identifier. Delimited identifiers means identifiers enclosed in double quotation marks. They can contain characters normally not supported in SQL identifiers, and they can be identical to a reserved word, e.g. a column named `B100`F9d9YEAR`f`b is specified as `B100`F9d9"YEAR"`f`b.

• In `F33f`_`[MySQL`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=MySQL]`_`f, double quotes are `F33f`_`[string literal`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=String_literal]`_`f delimiters by default instead. Enabling the `B100`F9d9ansi_quotes`f`b SQL mode enforces the SQL standard behavior. These can also be used regardless of this mode through backticks: `B100`F9d9\`YEAR\``f`b.

• `*Clauses`*, which are constituent components of `F33f`_`[statements`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Statement_(computer_science)]`_`f and queries. (In some cases, these are optional.)`:cite-ref-ansi-iso-iec-1-0[`F5bf`_`[1`#cite-note-ansi-iso-iec-1]`_`f]
• `*Expressions`*, which can produce either `F33f`_`[scalar`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Scalar_(computing)]`_`f values, or `F33f`_`[tables`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Table_(database)]`_`f consisting of `F33f`_`[columns`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Column_(database)]`_`f and `F33f`_`[rows`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Row_(database)]`_`f of data
• `*Predicates`*, which specify conditions that can be evaluated to SQL `F33f`_`[three-valued logic (3VL)`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Ternary_logic]`_`f (true/false/unknown) or `F33f`_`[Boolean`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Boolean_logic]`_`f `F33f`_`[truth values`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Truth_value]`_`f and are used to limit the effects of statements and queries, or to change program flow.
• `*Queries`*, which retrieve the data based on specific criteria. This is an important element of `*SQL`*.
• `*Statements`*, which may have a persistent effect on schemata and data, or may control `F33f`_`[transactions`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Database_transaction]`_`f, `F33f`_`[program flow`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Control_flow]`_`f, connections, `F33f`_`[sessions`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Session_(computer_science)]`_`f, or diagnostics.

• SQL statements also include the `F33f`_`[semicolon`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Semicolon]`_`f (";") statement terminator. Though not required on every platform, it is defined as a standard part of the SQL grammar.

• `*`F33f`_`[Insignificant whitespace`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Whitespace_(computer_science)]`_`f`* is generally ignored in SQL statements and queries, making it easier to format SQL code for readability.

>>Operators

`t
| Operator | Description | Example |
|---|---|---|
| = | Equal to | Author = 'Alcott' |
| <> | Not equal to (many dialects also accept != ) | Dept <> 'Sales' |
| > | Greater than | Hire_Date > '2012-01-31' |
| < | Less than | Bonus < 50000 . 00 |
| >= | Greater than or equal | Dependents >= 2 |
| <= | Less than or equal | Rate <= 0 . 05 |
| [ NOT ] BETWEEN [ SYMMETRIC ] | Between an inclusive range. SYMMETRIC inverts the range bounds if the first is higher than the second. | Cost BETWEEN 100 . 00 AND 500 . 00 |
| [ NOT ] LIKE [ ESCAPE ] | Begins with a character pattern | Full_Name LIKE 'Will%' |
| [ NOT ] LIKE [ ESCAPE ] | Contains a character pattern | Full_Name LIKE '%Will%' |
| [ NOT ] IN | Equal to one of multiple possible values | DeptCode IN ( 101 , 103 , 209 ) |
| IS [ NOT ] NULL | Compare to null (missing data) | Address IS NOT NULL |
| IS [ NOT ] TRUE or IS [ NOT ] FALSE | Boolean truth value test | PaidVacation IS TRUE |
| IS NOT DISTINCT FROM | Is equal to value or both are nulls (missing data) | Debt IS NOT DISTINCT FROM - Receivables |
| AS | Used to change a column name when viewing results | SELECT employee AS department1 |
`t

Other operators have at times been suggested or implemented, such as the `F33f`_`[skyline operator`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Skyline_operator]`_`f (for finding only those rows that are not 'worse' than any others).

SQL has the `B100`F9d9case`f`b expression, which was introduced in `F33f`_`[SQL-92`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=SQL-92]`_`f. In its most general form, which is called a "searched case" in the SQL standard:

`B100`F9d9CASE WHEN n > 0`f`b
`B100`F9d9 THEN 'positive'`f`b
`B100`F9d9 WHEN n < 0`f`b
`B100`F9d9 THEN 'negative'`f`b
`B100`F9d9 ELSE 'zero'`f`b
`B100`F9d9END`f`b

SQL tests `B100`F9d9WHEN`f`b conditions in the order they appear in the source. If the source does not specify an `B100`F9d9ELSE`f`b expression, SQL defaults to `B100`F9d9ELSE NULL`f`b. An abbreviated syntax called "simple case" can also be used:

`B100`F9d9CASE n WHEN 1`f`b
`B100`F9d9 THEN 'One'`f`b
`B100`F9d9 WHEN 2`f`b
`B100`F9d9 THEN 'Two'`f`b
`B100`F9d9 ELSE 'I cannot count that high'`f`b
`B100`F9d9END`f`b

This syntax uses implicit equality comparisons, with `F33f`_`[the usual caveats for comparing with NULL`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=SQL_CASE]`_`f.

There are two short forms for special `B100`F9d9CASE`f`b expressions: `B100`F9d9COALESCE`f`b and `B100`F9d9NULLIF`f`b.

The `B100`F9d9COALESCE`f`b expression returns the value of the first non-NULL operand, found by working from left to right, or NULL if all the operands equal NULL.

`B100`F9d9COALESCE(x1,x2)`f`b

is equivalent to:

`B100`F9d9CASE WHEN x1 IS NOT NULL THEN x1`f`b
`B100`F9d9 ELSE x2`f`b
`B100`F9d9END`f`b

The `B100`F9d9NULLIF`f`b expression has two operands and returns NULL if the operands have the same value, otherwise it has the value of the first operand.

`B100`F9d9NULLIF(x1, x2)`f`b

is equivalent to

`B100`F9d9CASE WHEN x1 = x2 THEN NULL ELSE x1 END`f`b

>>Comments

Standard SQL allows two formats for `F33f`_`[comments`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Comment_(computer_programming)]`_`f: `B100`F9d9-- comment`f`b, which is ended by the first `F33f`_`[newline`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Newline]`_`f, and `B100`F9d9/* comment */`f`b, which can span multiple lines.

>>Queries

The most common operation in SQL, the query, makes use of the declarative `B100`F9d9`F33f`_`[SELECT`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Select_(SQL)]`_`f`f`b statement. `B100`F9d9SELECT`f`b retrieves data from one or more `F33f`_`[tables`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Table_(database)]`_`f, or expressions. Standard `B100`F9d9SELECT`f`b statements have no persistent effects on the database. Some non-standard implementations of `B100`F9d9SELECT`f`b can have persistent effects, such as the `B100`F9d9SELECT INTO`f`b syntax provided in some databases.`:cite-ref-ms-sql-select-into-2-0[`F5bf`_`[2`#cite-note-ms-sql-select-into-2]`_`f]

Queries allow the user to describe desired data, leaving the `F33f`_`[database management system (DBMS)`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Database_management_system]`_`f to carry out `F33f`_`[planning`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Query_plan]`_`f, `F33f`_`[optimizing`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Query_optimizer]`_`f, and performing the physical operations necessary to produce that result as it chooses.

A query includes a list of columns to include in the final result, normally immediately following the `B100`F9d9SELECT`f`b keyword. An asterisk ("`B100`F9d9*`f`b") can be used to specify that the query should return all columns of the queried tables. `B100`F9d9SELECT`f`b is the most complex statement in SQL, with optional keywords and clauses that include:

• The `B100`F9d9`F33f`_`[FROM`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=From_(SQL)]`_`f`f`b clause, which indicates the table(s) to retrieve data from. The `B100`F9d9FROM`f`b clause can include optional `B100`F9d9`F33f`_`[JOIN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Join_(SQL)]`_`f`f`b subclauses to specify the rules for joining tables.
• The `B100`F9d9WHERE`f`b clause includes a comparison predicate, which restricts the rows returned by the query. The `B100`F9d9WHERE`f`b clause eliminates all rows from the `F33f`_`[result set`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Result_set]`_`f where the comparison predicate does not evaluate to True.
• The `B100`F9d9`F33f`_`[GROUP BY`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Group_by_(SQL)]`_`f`f`b clause projects rows having common values into a smaller set of rows. `B100`F9d9GROUP BY`f`b is often used in conjunction with SQL aggregation functions or to eliminate duplicate rows from a result set. The `B100`F9d9WHERE`f`b clause is applied before the `B100`F9d9GROUP BY`f`b clause.
• The `B100`F9d9`F33f`_`[HAVING`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Having_(SQL)]`_`f`f`b clause includes a predicate used to filter rows resulting from the `B100`F9d9GROUP BY`f`b clause. Because it acts on the results of the `B100`F9d9GROUP BY`f`b clause, aggregation functions can be used in the `B100`F9d9HAVING`f`b clause predicate.
• The `B100`F9d9`F33f`_`[ORDER BY`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Order_by_(SQL)]`_`f`f`b clause identifies which column[s] to use to sort the resulting data, and in which direction to sort them (ascending or descending). Without an `B100`F9d9ORDER BY`f`b clause, the order of rows returned by an SQL query is undefined.
• The `B100`F9d9DISTINCT`f`b keyword`:cite-ref-3[`F5bf`_`[3`#cite-note-3]`_`f] eliminates duplicate data.`:cite-ref-4[`F5bf`_`[4`#cite-note-4]`_`f]
• The `B100`F9d9OFFSET`f`b clause specifies the number of rows to skip before starting to return data.
• The `B100`F9d9FETCH FIRST`f`b clause specifies the number of rows to return. Some SQL databases instead have non-standard alternatives, e.g. `B100`F9d9LIMIT`f`b, `B100`F9d9TOP`f`b or `B100`F9d9ROWNUM`f`b.

The clauses of a query have a particular order of execution,`:cite-ref-5[`F5bf`_`[5`#cite-note-5]`_`f] which is denoted by the number on the right hand side. It is as follows:

The following example of a `B100`F9d9SELECT`f`b query returns a list of expensive books. The query retrieves all rows from the `*Book`* table in which the `*price`* column contains a value greater than 100.00. The result is sorted in ascending order by `*title`*. The asterisk (*) in the `*select list`* indicates that all columns of the `*Book`* table should be included in the result set.

`B100`F9d9SELECT *`f`b
`B100`F9d9 FROM Book`f`b
`B100`F9d9 WHERE price > 100.00`f`b
`B100`F9d9 ORDER BY title;`f`b

The example below demonstrates a query of multiple tables, grouping, and aggregation, by returning a list of books and the number of authors associated with each book.

`B100`F9d9SELECT Book.title AS Title,`f`b
`B100`F9d9 count(*) AS Authors`f`b
`B100`F9d9 FROM Book`f`b
`B100`F9d9 JOIN Book_author`f`b
`B100`F9d9 ON Book.isbn = Book_author.isbn`f`b
`B100`F9d9 GROUP BY Book.title;`f`b

Example output might resemble the following:

`B100`F9d9Title Authors`f`b
`B100`F9d9---------------------- -------`f`b
`B100`F9d9SQL Examples and Guide 4`f`b
`B100`F9d9The Joy of SQL 1`f`b
`B100`F9d9An Introduction to SQL 2`f`b
`B100`F9d9Pitfalls of SQL 1`f`b

Under the precondition that `*isbn`* is the only common column name of the two tables and that a column named `*title`* only exists in the `*Book`* table, one could re-write the query above in the following form:

`B100`F9d9SELECT title,`f`b
`B100`F9d9 count(*) AS Authors`f`b
`B100`F9d9 FROM Book`f`b
`B100`F9d9 NATURAL JOIN Book_author`f`b
`B100`F9d9 GROUP BY title;`f`b

However, many vendors either do not support this approach, or require certain column-naming conventions for natural joins to work effectively.

SQL includes operators and functions for calculating values on stored values. SQL allows the use of expressions in the `*select list`* to project data, as in the following example, which returns a list of books that cost more than 100.00 with an additional `*sales_tax`* column containing a sales tax figure calculated at 6% of the `*price`*.

`B100`F9d9SELECT isbn,`f`b
`B100`F9d9 title,`f`b
`B100`F9d9 price,`f`b
`B100`F9d9 price * 0.06 AS sales_tax`f`b
`B100`F9d9 FROM Book`f`b
`B100`F9d9 WHERE price > 100.00`f`b
`B100`F9d9 ORDER BY title;`f`b

>>>Subqueries

Queries can be nested so that the results of one query can be used in another query via a `F33f`_`[relational operator`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Relational_operator]`_`f or aggregation function. A nested query is also known as a `*subquery`*. While joins and other table operations provide computationally superior (i.e. faster) alternatives in many cases, the use of subqueries introduces a hierarchy in execution that can be useful or necessary. In the following example, the aggregation function `B100`F9d9AVG`f`b receives as input the result of a subquery:

`B100`F9d9SELECT isbn,`f`b
`B100`F9d9 title,`f`b
`B100`F9d9 price`f`b
`B100`F9d9 FROM Book`f`b
`B100`F9d9 WHERE price < (SELECT AVG(price) FROM Book)`f`b
`B100`F9d9 ORDER BY title;`f`b

A subquery can use values from the outer query, in which case it is known as a `F33f`_`[correlated subquery`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Correlated_subquery]`_`f.

Since 1999 the SQL standard allows `B100`F9d9WITH`f`b clauses for subqueries, i.e. named subqueries, usually called `F33f`_`[common table expressions`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Common_table_expression]`_`f (also called `F33f`_`[subquery factoring`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Subquery_factoring]`_`f). CTEs can also be `F33f`_`[recursive`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Recursive]`_`f by referring to themselves; `F33f`_`[the resulting mechanism`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Hierarchical_and_recursive_queries_in_SQL]`_`f allows tree or graph traversals (when represented as relations), and more generally `F33f`_`[fixpoint`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Fixpoint]`_`f computations.

>>>Derived table

A `*derived table`* is the use of referencing an SQL subquery in a FROM clause. Essentially, the derived table is a subquery that can be selected from or joined to. The derived table functionality allows the user to reference the subquery as a table. The derived table is sometimes referred to as an `*inline view `* or a `*subselect`*.

In the following example, the SQL statement involves a join from the initial "Book" table to the derived table "sales". This derived table captures associated book sales information using the ISBN to join to the "Book" table. As a result, the derived table provides the result set with additional columns (the number of items sold and the company that sold the books):

`B100`F9d9SELECT b.isbn, b.title, b.price, sales.items_sold, sales.company_nm`f`b
`B100`F9d9FROM Book b`f`b
`B100`F9d9 JOIN (SELECT SUM(Items_Sold) Items_Sold, Company_Nm, ISBN`f`b
`B100`F9d9 FROM Book_Sales`f`b
`B100`F9d9 GROUP BY Company_Nm, ISBN) sales`f`b
`B100`F9d9 ON sales.isbn = b.isbn`f`b

>>>Null or three-valued logic (3VL)

The concept of `F33f`_`[Null`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Null_(SQL)]`_`f allows SQL to deal with missing information in the relational model. The word `B100`F9d9NULL`f`b is a reserved keyword in SQL, used to identify the Null special marker. Comparisons with Null, for instance equality (=) in WHERE clauses, results in an Unknown truth value. In SELECT statements SQL returns only results for which the WHERE clause returns a value of True; i.e., it excludes results with values of False and also excludes those whose value is Unknown.

Along with True and False, the Unknown resulting from direct comparisons with Null thus brings a fragment of `F33f`_`[three-valued logic`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Three-valued_logic]`_`f to SQL. The truth tables SQL uses for AND, OR, and NOT correspond to a common fragment of the Kleene and Lukasiewicz three-valued logic (which differ in their definition of implication, however SQL defines no such operation).`:cite-ref-klein-6-0[`F5bf`_`[6`#cite-note-klein-6]`_`f]

There are however disputes about the semantic interpretation of Nulls in SQL because of its treatment outside direct comparisons. As seen in the table above, direct equality comparisons between two NULLs in SQL (e.g. `B100`F9d9NULL = NULL`f`b) return a truth value of Unknown. This is in line with the interpretation that Null does not have a value (and is not a member of any data domain) but is rather a placeholder or "mark" for missing information. However, the principle that two Nulls aren't equal to each other is effectively violated in the SQL specification for the `B100`F9d9UNION`f`b and `B100`F9d9INTERSECT`f`b operators, which do identify nulls with each other.`:cite-ref-meyden-7-0[`F5bf`_`[7`#cite-note-meyden-7]`_`f] Consequently, these `F33f`_`[set operations in SQL`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Set_operations_(SQL)]`_`f may produce results not representing sure information, unlike operations involving explicit comparisons with NULL (e.g. those in a `B100`F9d9WHERE`f`b clause discussed above). In Codd's 1979 proposal (which was basically adopted by SQL92) this semantic inconsistency is rationalized by arguing that removal of duplicates in set operations happens "at a lower level of detail than equality testing in the evaluation of retrieval operations".`:cite-ref-klein-6-1[`F5bf`_`[6`#cite-note-klein-6]`_`f] However, computer-science professor Ron van der Meyden concluded that "The inconsistencies in the SQL standard mean that it is not possible to ascribe any intuitive logical semantics to the treatment of nulls in SQL."`:cite-ref-meyden-7-1[`F5bf`_`[7`#cite-note-meyden-7]`_`f]

Additionally, because SQL operators return Unknown when comparing anything with Null directly, SQL provides two Null-specific comparison predicates: `B100`F9d9IS NULL`f`b and `B100`F9d9IS NOT NULL`f`b test whether data is or is not Null.`:cite-ref-sql2003-part2-sec87-8-0[`F5bf`_`[8`#cite-note-sql2003-part2-sec87-8]`_`f] SQL does not explicitly support `F33f`_`[universal quantification`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Universal_quantification]`_`f, and must work it out as a negated `F33f`_`[existential quantification`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Existential_quantification]`_`f.`:cite-ref-negri-9-0[`F5bf`_`[9`#cite-note-negri-9]`_`f]`:cite-ref-fratarcangeli-10-0[`F5bf`_`[10`#cite-note-fratarcangeli-10]`_`f]`:cite-ref-kawash-11-0[`F5bf`_`[11`#cite-note-kawash-11]`_`f] There is also the `B100`F9d9<row value expression> IS DISTINCT FROM <row value expression>`f`b infixed comparison operator, which returns TRUE unless both operands are equal or both are NULL. Likewise, IS NOT DISTINCT FROM is defined as `B100`F9d9NOT (<row value expression> IS DISTINCT FROM <row value expression>)`f`b. `F33f`_`[SQL:1999`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=SQL:1999]`_`f also introduced `B100`F9d9BOOLEAN`f`b data type, which according to the standard can also hold Unknown values if it is nullable. In practice, a number of systems (e.g. `F33f`_`[PostgreSQL`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=PostgreSQL]`_`f) implement the BOOLEAN Unknown as a BOOLEAN NULL, which the standard says that the NULL BOOLEAN and UNKNOWN "may be used interchangeably to mean exactly the same thing".`:cite-ref-12[`F5bf`_`[12`#cite-note-12]`_`f]`:cite-ref-13[`F5bf`_`[13`#cite-note-13]`_`f]

>>>Data manipulation

The `F33f`_`[Data Manipulation Language`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Data_Manipulation_Language]`_`f (DML) is the subset of SQL used to add, update and delete data:

• `B100`F9d9`F33f`_`[INSERT`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Insert_(SQL)]`_`f`f`b adds rows (formally `F33f`_`[tuples`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Tuple]`_`f) to an existing table, e.g.:

`B100`F9d9INSERT INTO example`f`b
`B100`F9d9 (column1, column2, column3)`f`b
`B100`F9d9 VALUES`f`b
`B100`F9d9 ('test', 'N', NULL);`f`b

• `B100`F9d9`F33f`_`[UPDATE`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Update_(SQL)]`_`f`f`b modifies a set of existing table rows, e.g.:

`B100`F9d9UPDATE example`f`b
`B100`F9d9 SET column1 = 'updated value'`f`b
`B100`F9d9 WHERE column2 = 'N';`f`b

• `B100`F9d9`F33f`_`[DELETE`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Delete_(SQL)]`_`f`f`b removes existing rows from a table, e.g.:

`B100`F9d9DELETE FROM example`f`b
`B100`F9d9 WHERE column2 = 'N';`f`b

• `B100`F9d9`F33f`_`[MERGE`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Merge_(SQL)]`_`f`f`b is used to combine the data of multiple tables. It combines the `B100`F9d9INSERT`f`b and `B100`F9d9UPDATE`f`b elements. It is defined in the SQL:2003 standard; prior to that, some databases provided similar functionality via different syntax, sometimes called "`F33f`_`[upsert`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Upsert]`_`f".

`B100`F9d9 MERGE INTO table_name USING table_reference ON (condition)`f`b
`B100`F9d9 WHEN MATCHED THEN`f`b
`B100`F9d9 UPDATE SET column1 = value1 [, column2 = value2 ...]`f`b
`B100`F9d9 WHEN NOT MATCHED THEN`f`b
`B100`F9d9 INSERT (column1 [, column2 ...]) VALUES (value1 [, value2 ...])`f`b

>>>Transaction controls

Transactions, if available, wrap DML operations:

• `B100`F9d9START TRANSACTION`f`b (or `B100`F9d9BEGIN WORK`f`b, or `B100`F9d9BEGIN TRANSACTION`f`b, depending on SQL dialect) marks the start of a `F33f`_`[database transaction`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Database_transaction]`_`f, which either completes entirely or not at all.
• `B100`F9d9SAVE TRANSACTION`f`b (or `B100`F9d9SAVEPOINT`f`b) saves the state of the database at the current point in transaction

`B100`F9d9CREATE TABLE tbl_1(id int);`f`b
`B100`F9d9 INSERT INTO tbl_1(id) VALUES(1);`f`b
`B100`F9d9 INSERT INTO tbl_1(id) VALUES(2);`f`b
`B100`F9d9COMMIT;`f`b
`B100`F9d9 UPDATE tbl_1 SET id=200 WHERE id=1;`f`b
`B100`F9d9SAVEPOINT id_1upd;`f`b
`B100`F9d9 UPDATE tbl_1 SET id=1000 WHERE id=2;`f`b
`B100`F9d9ROLLBACK to id_1upd;`f`b
`B100`F9d9 SELECT id from tbl_1;`f`b

• `B100`F9d9`F33f`_`[COMMIT`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Commit_(SQL)]`_`f`f`b makes all data changes in a transaction permanent.
• `B100`F9d9`F33f`_`[ROLLBACK`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Rollback_(SQL)]`_`f`f`b discards all data changes since the last `B100`F9d9COMMIT`f`b or `B100`F9d9ROLLBACK`f`b, leaving the data as it was prior to those changes. Once the `B100`F9d9COMMIT`f`b statement completes, the transaction's changes cannot be rolled back.

`B100`F9d9COMMIT`f`b and `B100`F9d9ROLLBACK`f`b terminate the current transaction and release data locks. In the absence of a `B100`F9d9START TRANSACTION`f`b or similar statement, the semantics of SQL are implementation-dependent. The following example shows a classic transfer of funds transaction, where money is removed from one account and added to another. If either the removal or the addition fails, the entire transaction is rolled back.

`B100`F9d9START TRANSACTION;`f`b
`B100`F9d9 UPDATE Account SET amount=amount-200 WHERE account_number=1234;`f`b
`B100`F9d9 UPDATE Account SET amount=amount+200 WHERE account_number=2345;`f`b
`B100`F9d9`f`b
`B100`F9d9IF ERRORS=0 COMMIT;`f`b
`B100`F9d9IF ERRORS<>0 ROLLBACK;`f`b

>>>Data definition

The `F33f`_`[Data Definition Language`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Data_Definition_Language]`_`f (DDL) manages table and index structure. The most basic items of DDL are the `B100`F9d9CREATE`f`b, `B100`F9d9ALTER`f`b, `B100`F9d9RENAME`f`b, `B100`F9d9DROP`f`b and `B100`F9d9TRUNCATE`f`b statements:

• `B100`F9d9`F33f`_`[CREATE`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Create_(SQL)]`_`f`f`b creates an object (a table, for example) in the database, e.g.:

`B100`F9d9CREATE TABLE example(`f`b
`B100`F9d9 column1 INTEGER,`f`b
`B100`F9d9 column2 VARCHAR(50),`f`b
`B100`F9d9 column3 DATE NOT NULL,`f`b
`B100`F9d9 PRIMARY KEY (column1, column2)`f`b
`B100`F9d9);`f`b

• `B100`F9d9`F33f`_`[ALTER`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Alter_(SQL)]`_`f`f`b modifies the structure of an existing object in various ways, for example, adding a column to an existing table or a constraint, e.g.:

`B100`F9d9ALTER TABLE example ADD column4 INTEGER DEFAULT 25 NOT NULL;`f`b

• `B100`F9d9`F33f`_`[TRUNCATE`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Truncate_(SQL)]`_`f`f`b deletes all data from a table in a very fast way, deleting the data inside the table and not the table itself. It usually implies a subsequent COMMIT operation, i.e., it cannot be rolled back (data is not written to the logs for rollback later, unlike DELETE).

`B100`F9d9TRUNCATE TABLE example;`f`b

• `B100`F9d9`F33f`_`[DROP`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Drop_(SQL)]`_`f`f`b deletes an object in the database, usually irretrievably, i.e., it cannot be rolled back, e.g.:

`B100`F9d9DROP TABLE example;`f`b

>>>Data types

Each column in an SQL table declares the type(s) that column may contain. ANSI SQL includes the following data types.`:cite-ref-iso-iec-14-0[`F5bf`_`[14`#cite-note-iso-iec-14]`_`f]

`!Character strings and national character strings`!

• `B100`F9d9CHARACTER(`*n`*)`f`b (or `B100`F9d9CHAR(`*n`*)`f`b): fixed-width `*n`*-character string, padded with spaces as needed
• `B100`F9d9CHARACTER VARYING(`*n`*)`f`b (or `B100`F9d9VARCHAR(`*n`*)`f`b): variable-width string with a maximum size of `*n`* characters
• `B100`F9d9CHARACTER LARGE OBJECT(`*n`* [ K | M | G | T ])`f`b (or `B100`F9d9CLOB(`*n`* [ K | M | G | T ])`f`b): character large object with a maximum size of `*n [ K | M | G | T ]`* characters
• `B100`F9d9NATIONAL CHARACTER(`*n`*)`f`b (or `B100`F9d9NCHAR(`*n`*)`f`b): fixed width string supporting an international character set
• `B100`F9d9NATIONAL CHARACTER VARYING(`*n`*)`f`b (or `B100`F9d9NVARCHAR(`*n`*)`f`b): variable-width `B100`F9d9NCHAR`f`b string
• `B100`F9d9NATIONAL CHARACTER LARGE OBJECT(`*n`* [ K | M | G | T ])`f`b (or `B100`F9d9NCLOB(`*n`* [ K | M | G | T ])`f`b): national character large object with a maximum size of `*n [ K | M | G | T ]`* characters

For the `B100`F9d9CHARACTER LARGE OBJECT`f`b and `B100`F9d9NATIONAL CHARACTER LARGE OBJECT`f`b data types, the multipliers `B100`F9d9K`f`b (1 024), `B100`F9d9M`f`b (1 048 576), `B100`F9d9G`f`b (1 073 741 824) and `B100`F9d9T`f`b (1 099 511 627 776) can be optionally used when specifying the length.

`!Binary`!

• `B100`F9d9BINARY(`*n`*)`f`b: Fixed length binary string, maximum length `*n`*.
• `B100`F9d9BINARY VARYING(`*n`*)`f`b (or `B100`F9d9VARBINARY(`*n`*)`f`b): Variable length binary string, maximum length `*n`*.
• `B100`F9d9BINARY LARGE OBJECT(`*n`* [ K | M | G | T ])`f`b (or `B100`F9d9BLOB(`*n`* [ K | M | G | T ])`f`b): binary large object with a maximum length `*n [ K | M | G | T ]`*.

For the `B100`F9d9BINARY LARGE OBJECT`f`b data type, the multipliers `B100`F9d9K`f`b (1 024), `B100`F9d9M`f`b (1 048 576), `B100`F9d9G`f`b (1 073 741 824) and `B100`F9d9T`f`b (1 099 511 627 776) can be optionally used when specifying the length.

`!Boolean`!

• `B100`F9d9BOOLEAN`f`b

The `B100`F9d9BOOLEAN`f`b data type can store the values `B100`F9d9TRUE`f`b and `B100`F9d9FALSE`f`b.

`!Numerical`!

• `B100`F9d9INTEGER`f`b (or `B100`F9d9INT`f`b), `B100`F9d9SMALLINT`f`b and `B100`F9d9BIGINT`f`b
• `B100`F9d9FLOAT`f`b, `B100`F9d9REAL`f`b and `B100`F9d9DOUBLE PRECISION`f`b
• `B100`F9d9NUMERIC(`*precision`*, `*scale`*)`f`b or `B100`F9d9DECIMAL(`*precision`*, `*scale`*)`f`b
• `B100`F9d9DECFLOAT(`*precision`*`f`b)

For example, the number 123.45 has a precision of 5 and a scale of 2. The `*precision`* is a positive integer that determines the number of significant digits in a particular radix (binary or decimal). The `*scale`* is a non-negative integer. A scale of 0 indicates that the number is an integer. For a decimal number with scale S, the exact numeric value is the integer value of the significant digits divided by 10S.

SQL provides the functions `B100`F9d9CEILING`f`b and `B100`F9d9FLOOR`f`b to round numerical values. (Popular vendor specific functions are `B100`F9d9TRUNC`f`b (Informix, DB2, PostgreSQL, Oracle and MySQL) and `B100`F9d9ROUND`f`b (Informix, SQLite, Sybase, Oracle, PostgreSQL, Microsoft SQL Server and Mimer SQL.))

`!Temporal (datetime)`!

• `B100`F9d9DATE`f`b: for date values (e.g. `B100`F9d92011-05-03`f`b).
• `B100`F9d9TIME`f`b: for time values (e.g. `B100`F9d915:51:36`f`b).
• `B100`F9d9TIME WITH TIME ZONE`f`b: the same as `B100`F9d9TIME`f`b, but including details about the time zone in question.
• `B100`F9d9TIMESTAMP`f`b: This is a `B100`F9d9DATE`f`b and a `B100`F9d9TIME`f`b put together in one value (e.g. `B100`F9d92011-05-03 15:51:36.123456`f`b).
• `B100`F9d9TIMESTAMP WITH TIME ZONE`f`b: the same as `B100`F9d9TIMESTAMP`f`b, but including details about the time zone in question.

The SQL function `B100`F9d9EXTRACT`f`b can be used for extracting a single field (seconds, for instance) of a datetime or interval value. The current system date / time of the database server can be called by using functions like `B100`F9d9CURRENT_DATE`f`b, `B100`F9d9CURRENT_TIMESTAMP`f`b, `B100`F9d9LOCALTIME`f`b, or `B100`F9d9LOCALTIMESTAMP`f`b. (Popular vendor specific functions are `B100`F9d9TO_DATE`f`b, `B100`F9d9TO_TIME`f`b, `B100`F9d9TO_TIMESTAMP`f`b, `B100`F9d9YEAR`f`b, `B100`F9d9MONTH`f`b, `B100`F9d9DAY`f`b, `B100`F9d9HOUR`f`b, `B100`F9d9MINUTE`f`b, `B100`F9d9SECOND`f`b, `B100`F9d9DAYOFYEAR`f`b, `B100`F9d9DAYOFMONTH`f`b and `B100`F9d9DAYOFWEEK`f`b.)

`!Interval (datetime)`!

• `B100`F9d9YEAR(`*precision`*)`f`b: a number of years
• `B100`F9d9YEAR(`*precision`*) TO MONTH`f`b: a number of years and months
• `B100`F9d9MONTH(`*precision`*)`f`b: a number of months
• `B100`F9d9DAY(`*precision`*)`f`b: a number of days
• `B100`F9d9DAY(`*precision`*) TO HOUR`f`b: a number of days and hours
• `B100`F9d9DAY(`*precision`*) TO MINUTE`f`b: a number of days, hours and minutes
• `B100`F9d9DAY(`*precision`*) TO SECOND(`*scale`*)`f`b: a number of days, hours, minutes and seconds
• `B100`F9d9HOUR(`*precision`*)`f`b: a number of hours
• `B100`F9d9HOUR(`*precision`*) TO MINUTE`f`b: a number of hours and minutes
• `B100`F9d9HOUR(`*precision`*) TO SECOND(`*scale`*)`f`b: a number of hours, minutes and seconds
• `B100`F9d9MINUTE(`*precision`*)`f`b: a number of minutes
• `B100`F9d9MINUTE(`*precision`*) TO SECOND(`*scale`*)`f`b: a number of minutes and seconds

>>>Data control

The `F33f`_`[Data Control Language`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Data_Control_Language]`_`f (DCL) authorizes users to access and manipulate data. Its two main statements are:

• `B100`F9d9GRANT`f`b authorizes one or more users to perform an operation or a set of operations on an object.
• `B100`F9d9REVOKE`f`b eliminates a grant, which may be the default grant.

Example:

`B100`F9d9GRANT SELECT, UPDATE`f`b
`B100`F9d9 ON example`f`b
`B100`F9d9 TO some_user, another_user;`f`b
`B100`F9d9`f`b
`B100`F9d9REVOKE SELECT, UPDATE`f`b
`B100`F9d9 ON example`f`b
`B100`F9d9 FROM some_user, another_user;`f`b

>>References

`:cite-note-ansi-iso-iec-1`!1.`! `F0af`_`[↑`#cite-ref-ansi-iso-iec-1-0]`_`f ANSI/ISO/IEC International Standard (IS). Database Language SQL—Part 2: Foundation (SQL/Foundation). 1999.
`:cite-note-ms-sql-select-into-2`!2.`! `F0af`_`[↑`#cite-ref-ms-sql-select-into-2-0]`_`f "SELECT - INTO Clause (Transact-SQL)". `*learn.microsoft.com`*. 2023-05-23. Retrieved 2024-11-07.
`:cite-note-3`!3.`! `F0af`_`[↑`#cite-ref-3]`_`f `*SAS 9.4 SQL Procedure User's Guide`*. SAS Institute. 2013. p. 248. `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 9781612905686. Retrieved 2015-10-21. Although the UNIQUE argument is identical to DISTINCT, it is not an ANSI standard.
`:cite-note-4`!4.`! `F0af`_`[↑`#cite-ref-4]`_`f `:citerefleonleon1999`a`F33f`_`[Leon, Alexis`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Alexis_Leon]`_`f; Leon, Mathews (1999). "Eliminating duplicates - SELECT using DISTINCT". `*SQL: A Complete Reference`*. New Delhi: Tata McGraw-Hill Education (published 2008). p. 143. `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 9780074637081. Retrieved 2015-10-21. [...] the keyword DISTINCT [...] eliminates the duplicates from the result set.
`:cite-note-5`!5.`! `F0af`_`[↑`#cite-ref-5]`_`f "What Is The Order Of Execution Of An SQL Query? - Designcise.com". `*www.designcise.com`*. 29 June 2015. Retrieved 2018-02-04.
`:cite-note-klein-6`!6.`! `F0af`_`[↑`#cite-ref-klein-6-0]`_`f `:citerefhans-joachim2003`aHans-Joachim, K. (2003). "Null Values in Relational Databases and Sure Information Answers". `*Semantics in Databases. Second International Workshop Dagstuhl Castle, Germany, January 7–12, 2001. Revised Papers`*. Lecture Notes in Computer Science. Vol. 2582. pp. 119–138. `F33f`_`[doi`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Doi_(identifier)]`_`f:10.1007/3-540-36596-6_7. `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 978-3-540-00957-3. Archived from the original on 7 July 2018.
`:cite-note-meyden-7`!7.`! `F0af`_`[↑`#cite-ref-meyden-7-0]`_`f Ron van der Meyden, "Logical approaches to incomplete information: a survey" in Chomicki, Jan; Saake, Gunter (Eds.) `*Logics for Databases and Information Systems`*, Kluwer Academic Publishers `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 978-0-7923-8129-7, p. 344
`:cite-note-sql2003-part2-sec87-8`!8.`! `F0af`_`[↑`#cite-ref-sql2003-part2-sec87-8-0]`_`f `:citerefiso-iec`aISO/IEC. `*ISO/IEC 9075-2:2003, "SQL/Foundation"`*. ISO/IEC.
`:cite-note-negri-9`!9.`! `F0af`_`[↑`#cite-ref-negri-9-0]`_`f `:citerefnegripelagattisbattella1989`aNegri, M.; Pelagatti, G.; Sbattella, L. (February 1989). "Semantics and problems of universal quantification in SQL". `*The Computer Journal`*. `!32`! (1): 90–91. `F33f`_`[doi`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Doi_(identifier)]`_`f:10.1093/comjnl/32.1.90.
`:cite-note-fratarcangeli-10`!10.`! `F0af`_`[↑`#cite-ref-fratarcangeli-10-0]`_`f `:citereffratarcangeli1991`aFratarcangeli, Claudio (1991). "Technique for universal quantification in SQL". `*ACM SIGMOD Record`*. `!20`! (3): 16–24. `F33f`_`[doi`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Doi_(identifier)]`_`f:10.1145/126482.126484. `F33f`_`[S2CID`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=S2CID_(identifier)]`_`f 18326990. Retrieved 2024-11-07.
`:cite-note-kawash-11`!11.`! `F0af`_`[↑`#cite-ref-kawash-11-0]`_`f Kawash, Jalal (2004) Complex quantification in Structured Query Language (SQL): a tutorial using relational calculus; `*Journal of Computers in Mathematics and Science Teaching`* `F33f`_`[ISSN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISSN_(identifier)]`_`f 0731-9258 Volume 23, Issue 2, 2004 AACE Norfolk, Virginia. Thefreelibrary.com
`:cite-note-12`!12.`! `F0af`_`[↑`#cite-ref-12]`_`f `:citerefc-date2011`aC. Date (2011). `*SQL and Relational Theory: How to Write Accurate SQL Code`*. O'Reilly Media, Inc. p. 83. `F33f`_`[ISBN`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=ISBN_(identifier)]`_`f 978-1-4493-1640-2.
`:cite-note-13`!13.`! `F0af`_`[↑`#cite-ref-13]`_`f ISO/IEC 9075-2:2011 §4.5
`:cite-note-iso-iec-14`!14.`! `F0af`_`[↑`#cite-ref-iso-iec-14-0]`_`f "ISO/IEC 9075-1:2016: Information technology – Database languages – SQL – Part 1: Framework (SQL/Framework)".

>>External links

• "Definition of SQL grammar", `*ISO_IEC_9075-2(E)_Foundation.bnf.xml`* (`F33f`_`[Backus–Naur form`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Backus–Naur_form]`_`f XML), ISO Standards Maintenance Portal.
• "Online SQL Formating Utility", `*Online SQL Formatter Utility`*, archived from the original on 2024-09-18.

`c`F0af`_`[↑ Back to top`#top]`_`f`a